home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 6380 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.2 KB  |  41 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: chang.unx.sas.com!walker
  3. From: walker@chang.unx.sas.com (Doug Walker)
  4. Subject: Re: Help with syntax
  5. Sender: news@unx.sas.com (Noter of Newsworthy Events)
  6. Message-ID: <DoxE38.n36@unx.sas.com>
  7. Date: Wed, 27 Mar 1996 12:16:20 GMT
  8. X-Nntp-Posting-Host: chang.unx.sas.com
  9. References: <4ja3nj$mng@sneezy.icinet.net>
  10. Organization: SAS Institute Inc.
  11.  
  12. In article <4ja3nj$mng@sneezy.icinet.net>,
  13. >disk.  The file is not big.  The problem is that it is named: 
  14. >
  15. >"ADDRESS FILE.FLR" (without the quotes).
  16. >
  17. >COPY and RENAME apparently look at the space between ADDRESS and FILE as 
  18. >a delimiter, and I get a syntax-type of error message.  I have tried 
  19. >using double-quotes at various places, but to no avail.  How can I either 
  20. >COPY or RENAME this file.
  21.  
  22. It should work if you say
  23.  
  24.    COPY "ADDRESS FILE.FLR" target
  25.  
  26. if for some reason it's not working, you can try
  27.  
  28.    COPY ADDRESS?FILE.FLR target
  29.    
  30. ? is the AmigaDOS wildcard that matches any character.
  31.  
  32. If neither of these works, I'd look for the syntax error in the target
  33. side of the copy.
  34.  
  35. -- 
  36.   *****     
  37.  *|_o_o|\\     Doug Walker   walker@unx.sas.com  
  38.  *|. o.| ||                
  39.   | o  |//     Any opinions are mine, not those of SAS Institute, Inc.
  40.   ====== 
  41.